home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / iconch1a / form1.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1999-10-06  |  1.8 KB  |  63 lines

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   3195
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   3570
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   3195
  10.    ScaleWidth      =   3570
  11.    StartUpPosition =   3  'Windows-Standard
  12.    Begin VB.CommandButton Command4 
  13.       Caption         =   "Exit"
  14.       Height          =   375
  15.       Left            =   2880
  16.       TabIndex        =   3
  17.       Top             =   2760
  18.       Width           =   615
  19.    End
  20.    Begin VB.CommandButton Command3 
  21.       Height          =   735
  22.       Left            =   960
  23.       Picture         =   "Form1.frx":0000
  24.       Style           =   1  'Grafisch
  25.       TabIndex        =   2
  26.       Top             =   2160
  27.       Width           =   1695
  28.    End
  29.    Begin VB.CommandButton Command2 
  30.       Height          =   735
  31.       Left            =   960
  32.       Picture         =   "Form1.frx":09CA
  33.       Style           =   1  'Grafisch
  34.       TabIndex        =   1
  35.       Top             =   1320
  36.       Width           =   1695
  37.    End
  38.    Begin VB.CommandButton Command1 
  39.       Height          =   735
  40.       Left            =   960
  41.       Picture         =   "Form1.frx":1394
  42.       Style           =   1  'Grafisch
  43.       TabIndex        =   0
  44.       Top             =   480
  45.       Width           =   1695
  46.    End
  47. Attribute VB_Name = "Form1"
  48. Attribute VB_GlobalNameSpace = False
  49. Attribute VB_Creatable = False
  50. Attribute VB_PredeclaredId = True
  51. Attribute VB_Exposed = False
  52. Private Sub Command1_Click()
  53. Me.Icon = Command1.Picture
  54. End Sub
  55. Private Sub Command2_Click()
  56. Me.Icon = Command2.Picture
  57. End Sub
  58. Private Sub Command3_Click()
  59. Me.Icon = Command3.Picture
  60. End Sub
  61. Private Sub Command4_Click()
  62. End Sub
  63.